All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.core.Pipe

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.core.Pipe

public class Pipe
extends NativeObject
This class wraps the Objective-C class NSPipe.


Constructor Index

 o Pipe()
This default constructor is equivalent to Objective-C's [[NSPipe alloc] init].
 o Pipe(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.

Method Index

 o fileHandleForReading()
A wrapper for the - fileHandleForReading Objective-C instance method.
 o fileHandleForWriting()
A wrapper for the - fileHandleForWriting Objective-C instance method.
 o pipe()
A wrapper for the + pipe Objective-C class method.

Constructors

 o Pipe
 protected Pipe(boolean shouldAllocate,
                int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o Pipe
 public Pipe()
This default constructor is equivalent to Objective-C's [[NSPipe alloc] init].

Methods

 o fileHandleForReading
 public native FileHandle fileHandleForReading()
A wrapper for the - fileHandleForReading Objective-C instance method.

 o fileHandleForWriting
 public native FileHandle fileHandleForWriting()
A wrapper for the - fileHandleForWriting Objective-C instance method.

 o pipe
 public static native Object pipe()
A wrapper for the + pipe Objective-C class method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index